home *** CD-ROM | disk | FTP | other *** search
/ Inside Mac Games Volume 5 #3 / IMG 46 Vol 5-3.iso / More Goodies / More For Your Game / Dark Forces / Levels ƒ / Lahara Hotel / HOTEL.BAT next >
DOS Batch File  |  1996-11-13  |  1KB  |  61 lines

  1. @echo off
  2.  
  3. if not exist jedi.lvl goto OK1
  4. echo JEDI.LVL was found in the current directory!
  5. goto Abort
  6.  
  7. :OK1
  8. if not exist briefing.lst goto OK2
  9. echo BRIEFING.LST was found in the current directory!
  10. goto Abort
  11.  
  12. :OK2
  13. if not exist text.msg goto OK3
  14. echo TEXT.MSG was found in the current directory!
  15. echo (For the full effect, this file should be moved or renamed)
  16. echo.
  17. choice /c:yn Continue 
  18. if errorlevel 2 goto end
  19. echo.
  20.  
  21. :OK3
  22. if not exist cutscene.lst goto OK4
  23. echo CUTSCENE.LST was found in the current directory!
  24. echo (For the full effect, this file should be moved or renamed)
  25. echo.
  26. choice /c:yn Continue 
  27. if errorlevel 2 goto end
  28. echo.
  29.  
  30. :OK4
  31. if not exist stalk-01.gmd goto OK5
  32. echo STALK-01.GMD was found in the current directory!
  33. echo (For the full effect, this file should be moved or renamed)
  34. echo.
  35. choice /c:yn Continue 
  36. if errorlevel 2 goto end
  37. echo.
  38.  
  39. :OK5
  40. if not exist fight-01.gmd goto AllOK
  41. echo FIGHT-01.GMD was found in the current directory!
  42. echo (For the full effect, this file should be moved or renamed)
  43. echo.
  44. choice /c:yn Continue 
  45. if errorlevel 2 goto end
  46. echo.
  47.  
  48. :AllOK
  49. ren lfd\dfbrief.lfd dfbrief.old
  50. ren hotel.lfd dfbrief.lfd
  51. dark -uhotel.gob %1 %2 %3 %4 %5 %6 %7 %8 %9
  52. ren dfbrief.lfd hotel.lfd
  53. ren lfd\dfbrief.old dfbrief.lfd
  54. goto end
  55.  
  56. :Abort
  57. echo This file must be moved or renamed in order to play the HOTEL level.
  58. echo.
  59.  
  60. :end
  61.